@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 122, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(142, 68, 173, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a1a 0%, #1c1c1c 50%, #181818 100%);
    color: white;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 50px 50px;
}

.navbar {
    padding: 0;
    border-bottom: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100px;
    transform: translateX(20px);
}

.logo {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    flex-shrink: 0;
    z-index: 1001;
}

.logo-image {
    height: 200px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.logo-image:hover {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(0, 122, 204, 0.4));
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
    display: flex;
    align-items: center;
}

/* Desktop styles - ensure navigation works on desktop */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.nav-menu > li > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.nav-menu > li > a:hover::before {
    left: 100%;
}

.nav-menu > li > a {
    border-bottom: none;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: white;
    background: linear-gradient(135deg, #007acc 0%, #0099ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.4);
    border-bottom-color: transparent;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle::after {
    content: '▼';
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 240px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .dropdown-toggle::after,
.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
    color: white;
}

.dropdown-menu li {
    padding: 0;
    list-style: none;
    margin: 0.3rem 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 15px;
    margin: 0 0.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #007acc 0%, #0099ff 100%);
    color: white;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.3);
    padding-left: 1.5rem;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, #007acc 0%, #0099ff 100%);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0 2px 2px 0;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.language-toggle {
    font-size: 0.9rem !important;
    padding: 0.6rem 1rem !important;
}

.language-menu {
    position: absolute;
    top: calc(100% + 1.5rem);
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 180px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    overflow: hidden;
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu li {
    padding: 0;
    list-style: none;
    margin: 0.3rem 0;
}

.language-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 15px;
    margin: 0 0.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    font-size: 0.9rem;
}

.language-menu a:hover {
    background: linear-gradient(135deg, #007acc 0%, #0099ff 100%);
    color: white;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 0 40px;
    background: inherit;
    min-height: 50vh;
}

.hero-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.welcome-text {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 0;
    font-weight: normal;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: 0.2rem;
    color: white;
    line-height: 1.1;
}

.description {
    margin-bottom: 1.5rem;
}

.description p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #ddd;
}

.call-to-action {
    font-weight: 600;
    text-align: center;
}

.contact-info {
    margin-top: 0.5rem;
}

.contact-info p {
    margin-bottom: 0.1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    font-size: 1.2rem;
    min-width: 1.5rem;
}

.contact-info a {
    color: #007acc;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.phone a {
    color: #007acc;
    font-weight: 600;
}

.address a {
    color: #007acc;
}

.email a {
    color: #007acc;
}

/* Services Section */
.services {
    padding: 20px 0 60px;
    background: #2a2a2a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    height: 300px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.personal-training {
    background-image: url('images/c58259ae-e2e3-4510-8425-98c9be368f50.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #cccccc;
    position: relative;
}

.personal-training::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.03) -700px,
            rgba(255, 255, 255, 0.03) -220px,
            transparent -220px,
            transparent 260px
        ),
        linear-gradient(315deg, 
            rgba(50, 50, 50, 0.9) 0%, 
            rgba(50, 60, 50, 0.88) 15%, 
            rgba(45, 70, 45, 0.86) 30%, 
            rgba(40, 85, 40, 0.84) 45%, 
            rgba(35, 105, 35, 0.82) 60%, 
            rgba(30, 130, 30, 0.8) 75%, 
            rgba(22, 224, 0, 0.75) 90%, 
            rgba(22, 224, 0, 0.7) 100%);
    background-position: 90px 0, 0 0;
    z-index: 1;
    border-radius: 20px;
}

.online-coaching {
    background-image: url('images/601869f5-358d-4283-84ec-be987187a627.png');
    background-size: 105%;
    background-position: 200% center;
    background-repeat: no-repeat;
    background-color: #cccccc;
    position: relative;
}

.online-coaching::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.03) -1050px,
            rgba(255, 255, 255, 0.03) -570px,
            transparent -570px,
            transparent -90px
        ),
        linear-gradient(315deg, 
            rgba(0, 0, 0, 1) 0%, 
            rgba(0, 0, 0, 1) 25%, 
            rgba(10, 5, 0, 0.98) 40%, 
            rgba(20, 10, 5, 0.95) 55%, 
            rgba(30, 15, 8, 0.9) 70%, 
            rgba(50, 25, 12, 0.85) 80%, 
            rgba(255, 89, 0, 0.8) 90%, 
            rgba(230, 74, 0, 0.85) 100%);
    background-position: 90px 0, 0 0;
    z-index: 1;
    border-radius: 20px;
}

.groepstraining {
    background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&h=1333&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #cccccc;
    position: relative;
}

.groepstraining::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.03) -503px,
            rgba(255, 255, 255, 0.03) -23px,
            transparent -23px,
            transparent 457px
        ),
        linear-gradient(315deg, 
            rgba(0, 0, 0, 0.98) 0%, 
            rgba(0, 0, 0, 0.96) 15%, 
            rgba(30, 8, 50, 0.94) 25%, 
            rgba(70, 20, 120, 0.90) 35%, 
            rgba(100, 30, 160, 0.86) 45%, 
            rgba(138, 43, 226, 0.84) 50%, 
            rgba(100, 30, 160, 0.86) 55%, 
            rgba(70, 20, 120, 0.90) 65%, 
            rgba(30, 8, 50, 0.94) 75%, 
            rgba(0, 0, 0, 0.96) 85%, 
            rgba(0, 0, 0, 0.98) 100%);
    background-position: 90px 0, 0 0;
    z-index: 1;
    border-radius: 20px;
}

.service-logo {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 3;
}

/* Desktop alleen - logo's hoger en groter */
@media (min-width: 769px) {
    .service-logo {
        top: -15px;
    }
    
    .service-logo-img {
        height: 170px;
    }
}

.service-logo-img {
    height: 135px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.service-slogan {
    position: absolute;
    top: 65px;
    right: 20px;
    z-index: 3;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: lowercase;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-align: right;
    line-height: 1.2;
}

.personal-training-slogan {
    color: #16e000;
}

.online-coaching-slogan {
    color: #ff5900;
}

.groepstraining-slogan {
    color: #8a2be2;
}

.service-content {
    position: absolute;
    top: 50%;
    left: 72%;
    transform: translate(-50%, -25%);
    z-index: 2;
    text-align: center;
    width: 100%;
}

.service-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.4);
    line-height: 0.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 220px;
}

.service-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
}

.service-footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.service-cta {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-cta {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Trainers Carousel */
.trainers-carousel {
    flex: 1;
    max-width: 380px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-left: 5rem;
}

.trainers-container {
    display: flex;
    animation: slide-trainers 20s linear infinite;
    width: 400%; /* 4 trainers for seamless loop */
    gap: 0;
}

@keyframes slide-trainers {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); /* Move half the width for seamless loop */}
}

.trainer-slide {
    width: 25%; /* Each slide takes 1/4 of container */
    flex-shrink: 0;
    position: relative;
    height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem 0;
}

.trainer-content {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    width: 100%;
    height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    margin: 0;
}

.trainer-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #007acc;
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.3);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    background: #333; /* Placeholder background */
    flex-shrink: 0;
}

.trainer-info {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trainer-info h4 {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
    color: white;
    font-weight: 600;
}

.trainer-expertise {
    font-size: 0.9rem;
    color: #ddd;
    margin: 0.1rem 0;
    line-height: 1.3;
}

/* Trainer Link */
.trainer-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.trainer-link:hover {
    transform: scale(1.02);
}

/* Hover pause animation */
.trainers-container:hover {
    animation-play-state: paused;
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background: #1a1a1a;
    overflow: hidden;
}

.reviews-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: white;
}

.reviews-section {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-rating {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.reviews-rating:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Pulsing animation */
.pulsing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

.rating-badge {
    background: #4CAF50;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.reviews-rating p {
    color: #ccc;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.google-logo {
    width: 60px;
    height: auto;
    margin-top: 0.5rem;
}

.reviews-carousel {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 220px;
}

.reviews-container {
    display: flex;
    animation: scroll-reviews 40s linear infinite;
    width: calc(280px * 8); /* 4 reviews visible + duplicates */
    gap: 1rem;
}

/* Hover pause voor reviews animatie */
.reviews-section:hover .reviews-container {
    animation-play-state: paused;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 4)); /* Move 4 reviews width */
    }
}

.reviews-grid {
    display: flex;
    gap: 1rem;
    min-width: calc(280px * 4);
    flex-shrink: 0;
}

.review-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 250px;
    max-width: 280px;
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.reviewer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #007acc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    margin: 0 0 0.1rem 0;
    color: white;
    font-size: 0.8rem;
}

.review-date {
    color: #999;
    font-size: 0.6rem;
    display: block;
    margin-bottom: 0.1rem;
}

.stars {
    color: #ffc107;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.google-icon {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    right: 0;
}

.review-text {
    color: #ddd;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    flex: 1;
    overflow: visible;
    text-overflow: unset;
    display: block;
    white-space: normal;
}

.read-more {
    color: #007acc;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    align-self: flex-start;
}

.read-more:hover {
    text-decoration: underline;
}

/* Site Footer */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #1c1c1c 50%, #181818 100%);
    color: white;
    padding: 3rem 0 1rem 0;
    border-top: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto 1rem auto;
    padding: 0 2rem;
}

.footer-main-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-main-logo-img {
    width: 300px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.footer-menu h4,
.footer-benefits h4,
.footer-address h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.footer-menu ul,
.footer-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li,
.footer-benefits li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #007acc;
}

.footer-benefits li {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-address p {
    color: #ccc;
    margin: 0.1rem 0;
    font-size: 0.9rem;
    line-height: 1.3;
}

.footer-address strong {
    color: white;
}

.footer-map {
    margin-top: 1rem;
    text-align: left;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-map iframe {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 200px;
    height: 120px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-socials h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.facebook {
    background: #3b5998;
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.whatsapp {
    background: #25d366;
    color: white;
}

.kvk {
    color: #999;
    font-size: 0.8rem;
    margin: 0;
}

.language-selector {
    background: #2a2a2a;
    color: white;
    border: 1px solid #333;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .trainers-carousel {
        max-width: 100%;
        width: 100%;
    }
    
    .trainer-slide {
        height: 400px;
        padding: 1rem;
    }
    
    .trainer-content {
        width: 250px;
        height: 350px;
        padding: 1rem 0.8rem;
    }
    
    .trainer-image {
        width: 150px;
        height: 150px;
        margin-top: 0.5rem;
    }
}

/* Responsive Navigation */
@media (max-width: 768px) {
    /* Make header full width on mobile (already is, but ensure no border-radius) */
    header {
        border-radius: 0 !important;
    }
    
    /* Remove logo from mobile navigation */
    .logo {
        display: none !important;
    }
    
    .nav-container {
        padding: 0;
        justify-content: center;
        width: 100%;
    }
    
    .nav-menu {
        gap: 0.3rem;
        padding: 0.6rem 0.5rem;
        border-radius: 0;
        font-size: 0.75rem;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: 100%;
        margin: 0;
        overflow-x: auto;
    }
    
    .dropdown-menu {
        min-width: 180px;
        border-radius: 12px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Hide desktop menu on mobile */
    .nav-menu {
        display: none;
    }
    
    /* Hamburger Menu Button */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 10px;
        z-index: 1002;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    /* Hamburger animation when active */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1001;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        padding-top: 80px;
    }
    
    .mobile-menu.active {
        transform: translateY(0);
    }
    
    /* Mobile Menu Items */
    .mobile-menu-items {
        list-style: none;
        padding: 2rem;
        margin: 0;
    }
    
    .mobile-menu-items > li {
        margin-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
    }
    
    .mobile-menu-items > li:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-items a,
    .mobile-menu-items > li > a,
    .mobile-menu a {
        color: white !important;
        text-decoration: none !important;
        font-size: 1.2rem;
        font-weight: 500;
        display: block;
        padding: 0.8rem 0;
        transition: color 0.3s ease;
    }
    
    .mobile-menu-items a:hover,
    .mobile-menu-items > li > a:hover,
    .mobile-menu a:hover {
        color: #007acc !important;
    }
    
    /* Mobile Submenu */
    .mobile-submenu {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0 0 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .mobile-submenu.active {
        max-height: 300px;
    }
    
    .mobile-submenu li {
        margin-bottom: 0.5rem;
    }
    
    .mobile-submenu a,
    .mobile-submenu > li > a {
        font-size: 0.9rem !important;
        color: #cccccc !important;
        padding: 0.5rem 0 0.5rem 1.5rem;
        position: relative;
        text-decoration: none !important;
        font-style: italic;
    }
    
    .mobile-submenu a:hover,
    .mobile-submenu > li > a:hover {
        color: #007acc !important;
    }
    
    .mobile-submenu a:before {
        content: "→";
        position: absolute;
        left: 0;
        color: #007acc;
    }
    
    /* Mobile dropdown toggle */
    .mobile-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        color: white !important;
    }
    
    .mobile-dropdown-toggle span {
        color: white !important;
    }
    
    .mobile-dropdown-toggle::after {
        content: " ▼" !important;
        font-size: 1.2rem !important;
        transition: transform 0.3s ease !important;
        color: #00ff00 !important;
        font-weight: bold !important;
        display: inline-block !important;
        margin-left: 5px !important;
    }
    
    .mobile-dropdown-toggle.active::after {
        transform: rotate(180deg);
    }
    
    /* Mobile content optimization */
    .main-title {
        font-size: 2.2rem;
        line-height: 1.2;
        text-align: center;
        padding: 0 1rem;
        /* Change title structure for mobile: Den Bosch under Personal training */
    }
    
    /* Custom mobile title restructure */
    .main-title br {
        display: none;
    }
    
    
    .description {
        display: flex;
        flex-direction: column;
    }
    
    .description p:first-child {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        padding: 0 1rem;
        order: 2;
    }
    
    .description p:nth-child(2) {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        padding: 0 1rem;
        order: 3;
    }
    
    .description p.call-to-action {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        padding: 0 1rem;
        order: 1;
        text-align: center;
        font-weight: 600;
        color: #007acc;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card {
        min-height: 300px;
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    /* Improved trainers carousel styling on mobile */
    .trainers-carousel {
        max-width: 300px;
        margin: 1.5rem auto;
        order: 2;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        border-radius: 20px;
        overflow: hidden;
    }
    
    .trainer-slide {
        height: 320px;
        padding: 0.8rem;
    }
    
    .trainer-content {
        width: 100%;
        height: 100%;
        padding: 1.5rem 1rem;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        border-radius: 15px;
        border: 2px solid rgba(0, 122, 204, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .trainer-content:hover {
        border-color: rgba(0, 122, 204, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
    
    .trainer-image {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin: 0 auto 1rem auto;
        border: 3px solid #007acc;
        object-fit: cover;
        box-shadow: 0 4px 15px rgba(0, 122, 204, 0.3);
    }
    
    .trainer-info h4 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        color: #007acc;
        font-weight: 700;
        text-align: center;
    }
    
    .trainer-expertise {
        font-size: 0.95rem;
        color: #e0e0e0;
        margin: 0.4rem 0;
        line-height: 1.4;
        text-align: center;
        padding: 0.2rem 0;
    }
    
    /* Hide third expertise item (Bodybuilding/Calisthenics text) on mobile */
    .trainer-info .trainer-expertise:nth-child(3) {
        display: none !important;
    }
    
    .trainer-info .trainer-expertise:last-child {
        display: none !important;
    }
    
    .hero-content {
        order: 1;
    }
    
    .contact-info {
        max-width: 100%;
        text-align: left;
        padding: 1rem;
        order: 3;
    }
    
    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .reviews-section {
        padding: 2rem 1rem;
    }
    
    .reviews-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .faq-section {
        padding: 2rem 1rem;
    }
    
    .faq-title {
        font-size: 1.8rem;
        text-align: center;
    }

    }
    
    /* Mobile dropdown - use click instead of hover */
    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
        color: white;
    }
    
    /* Language dropdown mobile */
    .language-dropdown:hover .language-menu {
        display: none;
    }
    
    .language-dropdown.active .language-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
        line-height: 1.2;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .description p {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }
    
    .service-title h3 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card {
        min-height: 250px;
        padding: 1rem;
    }
    
    .service-cta {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .page-hero p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Small mobile navigation */
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 0.5rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .dropdown-menu {
        min-width: 160px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 10px;
        font-size: 0.85rem;
    }
    
    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* Small mobile content */
    .hero-wrapper {
        padding: 0.5rem;
        gap: 1.5rem;
    }
    
    /* Shorten text content on mobile for hero section */
    .description p {
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin-bottom: 0.8rem !important;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        max-height: 3.2em;
    }
    
    .description p[data-translate="hero-desc2"] {
        display: none !important;
    }
    
    /* FORCE main mobile menu text to be white */
    .mobile-menu-items > li > a,
    .mobile-dropdown-toggle,
    .mobile-dropdown-toggle span,
    .mobile-menu span,
    .mobile-menu-items span {
        color: white !important;
        font-size: 1.2rem !important;
        font-weight: bold !important;
    }
    
    /* Dropdown submenu items - VERY different styling */
    .mobile-submenu a,
    .mobile-submenu > li > a {
        color: #ffaa00 !important;
        font-style: italic !important;
        font-size: 0.85rem !important;
        font-weight: normal !important;
        background: rgba(255, 170, 0, 0.1) !important;
        border-left: 3px solid #ffaa00 !important;
        margin-left: 10px !important;
    }
    
    .mobile-menu a:hover,
    .mobile-menu-items a:hover,
    .mobile-submenu a:hover,
    .mobile-dropdown-toggle:hover,
    .mobile-dropdown-toggle:hover span {
        color: #007acc !important;
    }
    
    .contact-info {
        padding: 0.5rem;
    }
    
    .contact-info h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Reviews responsive */
    .reviews-section {
        padding: 1.5rem 0.5rem;
        flex-direction: column;
    }
    
    .reviews-rating {
        display: none;
    }
    
    
    .reviews-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.5rem;
        margin: 0;
        height: auto;
        min-height: 160px;
    }
    
    .review-text {
        font-size: 1rem;
        line-height: 1.5;
        color: #fff;
    }
    
    .reviews-container {
        animation: none;
        justify-content: flex-start;
        transform: translateX(0);
        transition: transform 0.3s ease;
        width: auto;
    }
    
    .reviews-carousel {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        height: auto;
        padding-bottom: 10px;
    }
    
    .reviews-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .reviews-grid {
        gap: 1rem;
        min-width: unset;
        width: max-content;
    }
    
    /* FAQ responsive */
    .faq-section {
        padding: 1.5rem 0.5rem;
    }
    
    .faq-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .faq-question {
        font-size: 0.9rem;
        padding: 1rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .faq-toggle {
        font-size: 1.2rem;
        width: 30px;
        height: 30px;
    }
}

/* About Us Page Styles */
.team-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: #2a2a2a;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #007acc;
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.3);
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.member-expertise {
    margin-bottom: 1.5rem;
}

.member-expertise h4 {
    color: #007acc;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.member-expertise ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.member-expertise li {
    color: #ddd;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.member-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.9rem;
}

.about-intro {
    padding: 80px 0;
    background: #2a2a2a;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #ddd;
}

.values-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.value-item p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-map iframe {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
}

/* Footer column headers styling */
.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
    text-align: center;
}

.footer-column {
    text-align: center;
}

/* Footer columns spacing adjustment */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.footer-column ul li {
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
}

.footer-column a:hover {
    color: #ffffff;
    text-decoration: none;
}

.terms-link {
    color: #ffffff !important;
    text-decoration: none !important;
}

.terms-link:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}